eek, fixed an embarrasing bug that caused this function to always return
authorTim Janik <timj@gtk.org>
Sun, 20 Dec 1998 01:24:40 +0000 (01:24 +0000)
committerTim Janik <timj@src.gnome.org>
Sun, 20 Dec 1998 01:24:40 +0000 (01:24 +0000)
Sat Dec 19 22:49:40 1998  Tim Janik  <timj@gtk.org>

        * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug
        that caused this function to always return NULL (noticed by marius
        vollmer).

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtktypeutils.c

index 22531467e5a77d4f648d8d0767ac6cf3de83c8a3..a91a038f33d86963164b2e32ef68ecf330982951 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sat Dec 19 22:49:40 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug
+       that caused this function to always return NULL (noticed by marius
+       vollmer).
+
 Sat Dec 19 17:28:30 1998  Owen Taylor  <otaylor@redhat.com>
 
        * configure.in: Don't add the gthread libs to 
index 22531467e5a77d4f648d8d0767ac6cf3de83c8a3..a91a038f33d86963164b2e32ef68ecf330982951 100644 (file)
@@ -1,3 +1,9 @@
+Sat Dec 19 22:49:40 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug
+       that caused this function to always return NULL (noticed by marius
+       vollmer).
+
 Sat Dec 19 17:28:30 1998  Owen Taylor  <otaylor@redhat.com>
 
        * configure.in: Don't add the gthread libs to 
index 22531467e5a77d4f648d8d0767ac6cf3de83c8a3..a91a038f33d86963164b2e32ef68ecf330982951 100644 (file)
@@ -1,3 +1,9 @@
+Sat Dec 19 22:49:40 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug
+       that caused this function to always return NULL (noticed by marius
+       vollmer).
+
 Sat Dec 19 17:28:30 1998  Owen Taylor  <otaylor@redhat.com>
 
        * configure.in: Don't add the gthread libs to 
index 22531467e5a77d4f648d8d0767ac6cf3de83c8a3..a91a038f33d86963164b2e32ef68ecf330982951 100644 (file)
@@ -1,3 +1,9 @@
+Sat Dec 19 22:49:40 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug
+       that caused this function to always return NULL (noticed by marius
+       vollmer).
+
 Sat Dec 19 17:28:30 1998  Owen Taylor  <otaylor@redhat.com>
 
        * configure.in: Don't add the gthread libs to 
index 22531467e5a77d4f648d8d0767ac6cf3de83c8a3..a91a038f33d86963164b2e32ef68ecf330982951 100644 (file)
@@ -1,3 +1,9 @@
+Sat Dec 19 22:49:40 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug
+       that caused this function to always return NULL (noticed by marius
+       vollmer).
+
 Sat Dec 19 17:28:30 1998  Owen Taylor  <otaylor@redhat.com>
 
        * configure.in: Don't add the gthread libs to 
index 22531467e5a77d4f648d8d0767ac6cf3de83c8a3..a91a038f33d86963164b2e32ef68ecf330982951 100644 (file)
@@ -1,3 +1,9 @@
+Sat Dec 19 22:49:40 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug
+       that caused this function to always return NULL (noticed by marius
+       vollmer).
+
 Sat Dec 19 17:28:30 1998  Owen Taylor  <otaylor@redhat.com>
 
        * configure.in: Don't add the gthread libs to 
index 22531467e5a77d4f648d8d0767ac6cf3de83c8a3..a91a038f33d86963164b2e32ef68ecf330982951 100644 (file)
@@ -1,3 +1,9 @@
+Sat Dec 19 22:49:40 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtktypeutils.c (gtk_type_query): eek, fixed an embarrasing bug
+       that caused this function to always return NULL (noticed by marius
+       vollmer).
+
 Sat Dec 19 17:28:30 1998  Owen Taylor  <otaylor@redhat.com>
 
        * configure.in: Don't add the gthread libs to 
index 6ccc90eaa18daa903cfb5a8485c84da5b78b38bf..1d3fed1c1a61a814a838ad3a824a7b65058dc237 100644 (file)
@@ -894,6 +894,8 @@ gtk_type_query (GtkType type)
       query->type_name = node->type_info.type_name;
       query->object_size = node->type_info.object_size;
       query->class_size = node->type_info.class_size;
+
+      return query;
     }
   
   return NULL;